* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header */
.header {
    background-color: #e0e0e0;
  /* strip color */
  height: 40px;
  display: flex;
  justify-content: flex-end;
  /* 👉 right side */
  align-items: center;
  padding-right: 40px;
  gap: 30px;
}


.header ul {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px
}

.header li {
    cursor: pointer;
    font-size: 14px;
}

/* NAV STRIP */
.navbar {
  background-color: #e0e0e0;
  /* strip color */
  height: 40px;
  display: flex;
  justify-content: flex-end;
  /* 👉 right side */
  align-items: center;
  padding-right: 40px;
  gap: 30px;
}

/* Nav links */
.navbar a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
}

.navbar a:hover {
  color: red;
}


/* Banner */
.banner {
    background: linear-gradient(to right, #1e88e5, #1565c0);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.banner .icons span {
    font-size: 22px;
    background: orange;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Company Info */
.company-info {
    text-align: center;
    padding: 30px;
}

/* Offices */
.offices {
    width: 80%;
    margin: auto;
}

.office {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
   
}

.office img {
    
    width: 160px;
    height: 150px;
    object-fit: cover;
    margin-right: 50px;
    margin-left: 100px;
}

.office-details h3 {
    color: #1565c0;
    margin-bottom: 8px;
    margin-top: 30px;
    
}

.office-details p {
    font-size: 14px;
    margin-bottom: 0px;

}

/* ===== RIGHT FORM ===== */
/* HERO CARD */
.box-right {
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  color: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.box-right {
  margin-bottom: 20px;
}

.box-right input,
.box-right select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.box-right button {
  width: 100%;
  padding: 12px;
  background: #0b2c4d;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none; /* hidden initially */
}

.popup-box {
  width: 900px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease-in-out;
}

.popup-left { width: 45%; }
.popup-left img { width: 100%; height: 100%; object-fit: cover; }

.popup-right { width: 55%; padding: 30px; position: relative; }

.popup-right input {
  width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 6px; border: 1px solid #ccc;
}

.phone-box { display: flex; gap: 10px; align-items: center; }

.checkbox { font-size: 14px; margin-bottom: 15px; display: block; }

button.glow-btn {
  background: linear-gradient(90deg,#ff6a00,#ff3d00);
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 0 10px #ff6a00, 0 0 20px #ff3d00, 0 0 40px #ff6a00;
  transition: 0.3s;
}

button.glow-btn:hover {
  box-shadow: 0 0 20px #ff6a00, 0 0 40px #ff3d00, 0 0 60px #ff6a00;
  transform: translateY(-2px);
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}



